home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Champak 29
/
Volume 29 - JOGO DISK .iso
/
Games
/
jumping_jelly_beans.swf
/
scripts
/
DefineSprite_709
/
frame_1
/
DoAction.as
Wrap
Text File
|
2006-11-29
|
335b
|
19 lines
accel = 0.7;
convert = 0.5;
onenterframe = function()
{
xs = xs * accel + (r.time - bar._xscale) * convert;
bar._xscale += xs;
if(r.time < 25)
{
clock.gotoAndStop(2);
frame.frame2.gotoAndStop(2);
}
else
{
clock.gotoAndStop(1);
frame.frame2.gotoAndStop(1);
}
};
stop();